home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 1 / QRZ Ham Radio Callsign Database - December 1993.iso / ucsd / packet / tcpip / amiga / asrc29k.lha / ftp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-08  |  391 b   |  18 lines

  1. /* Definitions common to both FTP servers and clients */
  2.  
  3. #ifndef    ASCII_TYPE
  4.  
  5. #define    BLKSIZE    2048    /* Chunk size for file I/O */
  6.  
  7. #define    ASCII_TYPE    0
  8. #define    IMAGE_TYPE    1
  9. #define    LOGICAL_TYPE    2
  10.  
  11. /* In ftpsubr.c: */
  12. long sendfile __ARGS((FILE *fp,int s,int mode,int hash));
  13. long recvfile __ARGS((FILE *fp,int s,int mode,int hash));
  14. int isbinary __ARGS((FILE *fp));
  15.  
  16. #endif    /* ASCII_TYPE */
  17.  
  18.